home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / Examples / AppKit / Draw / graphicsUndo.subproj / UngroupGraphicsChange.h < prev    next >
Encoding:
Text File  |  1995-08-03  |  290 b   |  16 lines

  1. @interface UngroupGraphicsChange : Change
  2. {
  3.     id         graphicView;
  4.     NSMutableArray    *changeDetails;
  5.     NSMutableArray    *groups;
  6. }
  7.  
  8. - initGraphicView:aGraphicView;
  9. - (NSString *)changeName;
  10. - (void)saveBeforeChange;
  11. - (void)undoChange;
  12. - (void)redoChange;
  13. - (Class)changeDetailClass;
  14.  
  15. @end
  16.